home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d12 / c_toolbx.arc / FDPARM.H < prev    next >
Encoding:
C/C++ Source or Header  |  1988-03-30  |  603 b   |  26 lines

  1. /* fdparm.h - parameters for FD program */
  2.  
  3. /* number of lines in a display page */
  4. #define PAGE_SIZE    16
  5.  
  6. /* number of bytes per line */
  7. #define LINE_SIZE    16
  8.  
  9. /* number of lines of overlap between display pages */
  10. #define LINES_OVERLAP    0
  11.  
  12. /* special return values for get_next_char &get_pervious_char */
  13. /* to indicate that begining or end of file has been reached  */
  14. #define EOF_MARK    -1
  15. #define BOF_MARK    -2
  16.  
  17. /* definition of control char marking the end of a line */
  18. #define END_LINE    10
  19.  
  20. /* define success/failure for return codes */
  21. #define  SUCCESS    1
  22. #define  FAILURE    0
  23.  
  24.  
  25.  
  26.